home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / Net_StringToNetNum.c < prev    next >
C/C++ Source or Header  |  1988-11-21  |  2KB  |  108 lines

  1. /* 
  2.  * Net_StringToNetNum.c --
  3.  *
  4.  *    Convert a string to the network number part of the address.
  5.  *
  6.  * Copyright 1987 Regents of the University of California
  7.  * All rights reserved.
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  */
  16.  
  17. #ifndef lint
  18. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_StringToNetNum.c,v 1.1 88/11/21 09:10:32 mendel Exp $ SPRITE (Berkeley)";
  19. #endif not lint
  20.  
  21.  
  22. #include "sprite.h"
  23. #include "net.h"
  24. #include "ctype.h"
  25.  
  26. /*
  27.  *----------------------------------------------------------------------
  28.  *
  29.  * Net_StringToNetNum --
  30.  *
  31.  *    Given a string containing an IP address in the Internet standard 
  32.  *    "." notation, return  the network number for that address.
  33.  *
  34.  * Results:
  35.  *    The network number of the address.
  36.  *
  37.  * Side effects:
  38.  *    None.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43. unsigned int
  44. Net_StringToNetNum(cp)
  45.     register char *cp;
  46. {
  47.     register unsigned int value;
  48.     register unsigned int base;
  49.     unsigned int parts[4];
  50.     register unsigned int *partsPtr = parts;
  51.     register char c;
  52.     register int i;
  53.     unsigned int n;
  54.  
  55. again:
  56.     value = 0; 
  57.     base = 10;
  58.     if (*cp == '0') {
  59.     base = 8;
  60.     cp++;
  61.     }
  62.     if (*cp == 'x' || *cp == 'X') {
  63.     base = 16;
  64.     cp++;
  65.     }
  66.  
  67.     c = *cp;
  68.     while (c != '\0') {
  69.     if (isdigit(c)) {
  70.         value = (value * base) + (c - '0');
  71.     } else if (base == 16 && isxdigit(c)) {
  72.         value = (value << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
  73.     } else {
  74.         break;
  75.     }
  76.     cp++;
  77.     c = *cp;
  78.     }
  79.  
  80.     if (*cp == '.') {
  81.     if (partsPtr >= parts + 4) {
  82.         return(-1);
  83.     }
  84.     *partsPtr = value;
  85.     partsPtr++;
  86.     cp++;
  87.     goto again;
  88.     }
  89.  
  90.     if (*cp != '\0' && !isspace(*cp)) {
  91.     return(-1);
  92.     }
  93.  
  94.     *partsPtr = value;
  95.     partsPtr++;
  96.  
  97.     n = partsPtr - parts;
  98.     if (n > 4) {
  99.     return(-1);
  100.     }
  101.     for (value = 0, i = 0; i < n; i++) {
  102.         value <<= 8;
  103.         value |= parts[i] & 0xff;
  104.     }
  105.     return(value);
  106. }
  107.  
  108.